home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / SOURCE.BIN / View.java < prev    next >
Encoding:
Java Source  |  1997-06-19  |  2.0 KB  |  84 lines

  1. package symantec.itools.awt;
  2.  
  3.  
  4. import java.awt.LayoutManager;
  5. import java.awt.Panel;
  6.  
  7.  
  8. /**
  9.  *
  10.  *
  11.  *
  12.  * @see symantec.itools.awt.OutlineView
  13.  * @see symantec.itools.awt.TreeView
  14.  *
  15.  * @version 1.0, Nov 26, 1996
  16.  *
  17.  * @author    Symantec
  18.  *
  19.  */
  20.  
  21.  
  22. public abstract class View
  23.     extends Panel
  24. {
  25.     //--------------------------------------------------
  26.     // constants
  27.     //--------------------------------------------------
  28.  
  29.  
  30.     //--------------------------------------------------
  31.     // class variables
  32.     //--------------------------------------------------
  33.  
  34.  
  35.     //--------------------------------------------------
  36.     // member variables
  37.     //--------------------------------------------------
  38.  
  39.  
  40.     //--------------------------------------------------
  41.     // constructors
  42.     //--------------------------------------------------
  43.  
  44.     public View()
  45.     {
  46.         super.setLayout(null);
  47.     }
  48.  
  49.     //--------------------------------------------------
  50.     // accessor members
  51.     //--------------------------------------------------
  52.  
  53.  
  54.     //--------------------------------------------------
  55.     // event methods
  56.     //--------------------------------------------------
  57.  
  58.  
  59.     //--------------------------------------------------
  60.     // class methods
  61.     //--------------------------------------------------
  62.  
  63.  
  64.     //--------------------------------------------------
  65.     // member methods
  66.     //--------------------------------------------------
  67.  
  68.     /**
  69.      * Takes no action.
  70.      * This is a standard Java AWT method which gets called to specify
  71.      * which layout manager should be used to layout the components in
  72.      * standard containers.
  73.      *
  74.      * Since layout managers CANNOT BE USED with this container the standard
  75.      * setLayout has been OVERRIDDEN for this container and does nothing.
  76.      *
  77.      * @param l the layout manager to use to layout this container's components
  78.      * (IGNORED)
  79.      * @see java.awt.Container#getLayout
  80.      **/
  81.     public void setLayout(LayoutManager m)
  82.     {
  83.     }
  84. }